.pricing-section {
  padding: 80px 24px;
  font-family: "DM Sans", system-ui, "Segoe UI", sans-serif;
  color: #fff;
}

.pricing-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.pricing-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 14px;
  border-radius: 100px;
  background: rgba(186, 117, 23, 0.12);
  border: 1px solid rgba(186, 117, 23, 0.22);
  margin-bottom: 1rem;
}
.pricing-eyebrow svg  { width: 12px; height: 12px; flex-shrink: 0; }
.pricing-eyebrow span { font-size: 12px; font-weight: 600; color: #BA7517; }

.pricing-title {
  font-size: clamp(3.6rem, 4vw, 2.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
  margin: 0 0 0.5rem;
}

.pricing-subtitle {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* ── Grid ─────────────────────────────────────────────────── */
.pricing-wrapper {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 54px;
  align-items: start;
}

/* ── Card base ────────────────────────────────────────────── */
.pricing-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
}

.pricing-card--featured {
  border: 2px solid #5ea2ff;
}

.pricing-popular-bar {
  background: rgba(94, 162, 255, 0.1);
  padding: 15px 0;
  text-align: center;
  border-bottom: 1px solid rgba(94, 162, 255, 0.18);
}
.pricing-popular-bar span {
  font-size: 22px;
  font-weight: 500;
  color: #5ea2ff;
  letter-spacing: 0.04em;
}

/* ── Card top ─────────────────────────────────────────────── */
.pricing-top {
  background: rgba(255, 255, 255, 0.04);
  padding: 22px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.pricing-mode-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 10px;
}
.pricing-mode-badge--online {
  background: rgba(129, 255, 94, 0.12);
  border: 1px solid rgba(94, 162, 255, 0.2);
  color:rgb(108, 255, 94);
}
.pricing-mode-badge--offline {
  background: rgba(99, 153, 34, 0.12);
  border: 1px solid rgba(99, 153, 34, 0.2);
  color: #63dc50;
}

.pricing-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin: 0 0 6px;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.price-new {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.02em;
}
.price-old {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: line-through;
}
.pricing-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  margin: 5px 0 0;
}

/* ── Card body ────────────────────────────────────────────── */
.pricing-body {
  padding: 18px 24px;
}

.features-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin: 0 0 4px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.pricing-features li:last-child  { border-bottom: none; }
.pricing-features li.feat--disabled { color: rgba(255, 255, 255, 0.3); }

/* ── Feature icons ────────────────────────────────────────── */
.feat-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feat-icon--check { background: rgba(99, 153, 34, 0.15); }
.feat-icon--cross { background: rgba(255, 255, 255, 0.05); }
.feat-icon svg    { width: 10px; height: 10px; }

/* ── Buttons ──────────────────────────────────────────────── */
.pricing-btn {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.2s ease, transform 0.15s ease;
}
.pricing-btn:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}
.pricing-btn--outline {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.pricing-btn--solid {
  background: #ffffff;
  color: #0a0a0f;
  border: none;
}

/* ── Trust row ────────────────────────────────────────────── */
.pricing-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}
.trust-item svg { width: 13px; height: 13px; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 480px) {
  .pricing-section { padding: 60px 16px; }
  .pricing-wrapper { grid-template-columns: 1fr; }
  .pricing-body,
  .pricing-top     { padding: 16px 20px; }
  .pricing-title { font-size: 2.1rem;}
  .pricing-subtitle { font-size: 1.2rem;}
}